home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000211_news@columbia.edu_Sun Apr 23 10:13:38 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24957
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 23 Apr 1995 19:56:37 -0400
  3. Received: by apakabar.cc.columbia.edu id AA05665
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 23 Apr 1995 19:56:36 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Why do I get ^Q's when I execute my scripts?
  9. Message-Id: <1995Apr23.161338.48371@cc.usu.edu>
  10. Date: 23 Apr 95 16:13:38 MDT
  11. References: <3n6gmd$3m0@nrcnet0.nrc.ca> <3ne69h$oqq@nrcnet0.nrc.ca>
  12. Organization: Utah State University
  13. Lines: 44
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3ne69h$oqq@nrcnet0.nrc.ca>, Bradley Pick <BPICK@CISTI.LAN.NRC.CA> writes:
  17. > BPICK@CISTI.LAN.NRC.CA wrote:
  18. >>
  19. >> Using ms-dos kermit 3.14 I receive back ^Q's throughout scripts
  20. >> when telneting to various hosts, in this case an IBM mainframe.
  21. >> This seems to happen when my script pauses after issuing some 
  22. >> commands. I've played around with the obvious choices of flow control
  23. >> parity, etc.... and nothing worked. 
  24. >> 
  25. >> The strange part is that I do not get any ^Q's back when I manually 
  26. >> do a telnet.
  27. >> 
  28. >>  Any help is appreciated.
  29. >>     
  30. >>        Brad
  31. > I've read about "set handshake" in the book "using ms-dos kermit" and
  32. > on page 57 it tells me what ^Q is.But when i try to change it to 
  33. > XON , XOFF ,CR or to the equivalent code I alway end up having 
  34. > "HANDSHAKE CHARACTER: 36"  If I say "SET HANDSHAKE XON" should I not
  35. > see "SET HANDSHAKE CHARACTER: XON" when i do "SHOW COM" or am I doing
  36. > something seriously wrong here.
  37. > Thanks
  38. > Brad
  39. ------------
  40.     Handshake and flow control are different animals. HANDSHAKE
  41. is for logical half duplex control exchange ("your turn to talk")
  42. and is encountered almost entirely with IBM mainframe frontends these
  43. days. The frontend sends a Control-Q to say "go ahead".
  44.     Flow control can use Control-S/-Q, and will interact badly
  45. with the half duplex scheme above (and should never be used with it).
  46. Control-S/-Q is for full duplex channels, and it flows in the opposite
  47. direction as the data it is trying to regular, and at the same time.
  48. This paragraph is for readers who may confuse the two uses.
  49.     Now in your situation we have an IBM mainframe frontend sending
  50. the HANDSHAKE Control-Q, and it is entirely up to it which code it will
  51. use (it's not a Kermit protocol negotiation item). MSK will recognize
  52. the incoming Control-Q during Kermit packet exchanges, but not otherwise.
  53.     I think your solution is to put the IBM frontend into VT100 emulation
  54. mode, full duplex style. IBM mainframe experts can chime in here with the
  55. proper terminology.
  56.     Joe D.